github.com/andybalholm/brotli/matchfinder.Bargain2.history (field)

13 uses

	github.com/andybalholm/brotli/matchfinder (current package)
		bargain2.go#L24: 	history []byte
		bargain2.go#L37: 	z.history = z.history[:0]
		bargain2.go#L68: 	if len(z.history) > z.MaxDistance*2 {
		bargain2.go#L69: 		delta := len(z.history) - z.MaxDistance
		bargain2.go#L70: 		copy(z.history, z.history[delta:])
		bargain2.go#L71: 		z.history = z.history[:z.MaxDistance]
		bargain2.go#L93: 	historyLen := len(z.history)
		bargain2.go#L94: 	z.history = append(z.history, src...)
		bargain2.go#L95: 	src = z.history